home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
ctoolwrk.lbr
/
WFILE.C
< prev
next >
Wrap
Text File
|
1985-09-27
|
256b
|
18 lines
/* this is 'wfile.c' -- a program to write into a file */
#include a:printf.c
main()
{
fopen("file","w");
{
fprintf(1,"Write this note\nin a file named 'file'.");
}
fclose(1);
}